home *** CD-ROM | disk | FTP | other *** search
- ***********************************************************************
- Madison IBM-PC Users' Group
- Turbo Pascal Library Diskette # 10
-
- Featuring: Instruction on Data Structures.
- The following are a collection of Pascal assignments and
- solutions from a Data Structures course taken
- by Chris Maeder.
-
- -----------------------------------------------------------------------
- This diskette contains PROGRAMS and or DATA determined to be in the
- PUBLIC DOMAIN provided as a service of the GROUP for the use of it's
- members. The Madison IBM-PC User's Group will not be liable for any
- damages, including any lost profits, lost savings or other incidental
- or consequential damages arising out of the use of or inability to use
- the contents, even if the GROUP has been advised of the possibility of
- such damages, or for any claim by any other party.
- -----------------------------------------------------------------------
- Released 12/18/85
- ***********************************************************************
- Title Description
- ------------ ---------------------------------------------------------
- README TXT The file you are now reading
-
- The following is a Pascal assignment in data structures.
- It implements a graph for analyzing data. It is probably
- of use to you if you want to learn something about graph
- data structures.
- GRAPH DOC Assignment.
- GRAPH PAS Program.
- GRAPH FIL Data file.
-
- The following is a Pascal assignment in data
- structures. It implements a hash table and linked list
- for storing data using pointers. It is probably of use
- to you if you want to learn something about chain bucket
- hashing and pointers.
- HASH DOC Assignment.
- HASH PAS Program.
- HASH FIL Data file.
-
- The following is a Pascal assignment in data structures.
- It implements a stack for storing data using pointers.
- It is probably of use to you if you want to learn something
- about stack data structures and pointers.
- STACK DOC Assignment.
- STACK PAS Program.
- STACK FIL Data file.
-
- The following is a Pascal assignment in data structures.
- It implements a doubly linked queue, a doubly linked circular
- queue, and a binary search tree for storing data using pointers.
- It is probably of use to you if you want to learn something about
- the previously stated data structures and pointers.
- TREE DOC Assignment.
- TREE PAS Program.
- TREE INC Include file.
- TREE FIL Data file.
-
- TRANSFER DAT Filecat disk library data transfer file
- -----------------------------------------------------------------